home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / rot_13.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  98 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. ''' Python Character Mapping Codec for ROT13.
  5.  
  6.     See http://ucsub.colorado.edu/~kominek/rot13/ for details.
  7.  
  8.     Written by Marc-Andre Lemburg (mal@lemburg.com).
  9.  
  10. '''
  11. import codecs
  12.  
  13. class Codec(codecs.Codec):
  14.     
  15.     def encode(self, input, errors = 'strict'):
  16.         return codecs.charmap_encode(input, errors, encoding_map)
  17.  
  18.     
  19.     def decode(self, input, errors = 'strict'):
  20.         return codecs.charmap_decode(input, errors, decoding_map)
  21.  
  22.  
  23.  
  24. class StreamWriter(Codec, codecs.StreamWriter):
  25.     pass
  26.  
  27.  
  28. class StreamReader(Codec, codecs.StreamReader):
  29.     pass
  30.  
  31.  
  32. def getregentry():
  33.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  34.  
  35. decoding_map = codecs.make_identity_dict(range(256))
  36. decoding_map.update({
  37.     65: 78,
  38.     66: 79,
  39.     67: 80,
  40.     68: 81,
  41.     69: 82,
  42.     70: 83,
  43.     71: 84,
  44.     72: 85,
  45.     73: 86,
  46.     74: 87,
  47.     75: 88,
  48.     76: 89,
  49.     77: 90,
  50.     78: 65,
  51.     79: 66,
  52.     80: 67,
  53.     81: 68,
  54.     82: 69,
  55.     83: 70,
  56.     84: 71,
  57.     85: 72,
  58.     86: 73,
  59.     87: 74,
  60.     88: 75,
  61.     89: 76,
  62.     90: 77,
  63.     97: 110,
  64.     98: 111,
  65.     99: 112,
  66.     100: 113,
  67.     101: 114,
  68.     102: 115,
  69.     103: 116,
  70.     104: 117,
  71.     105: 118,
  72.     106: 119,
  73.     107: 120,
  74.     108: 121,
  75.     109: 122,
  76.     110: 97,
  77.     111: 98,
  78.     112: 99,
  79.     113: 100,
  80.     114: 101,
  81.     115: 102,
  82.     116: 103,
  83.     117: 104,
  84.     118: 105,
  85.     119: 106,
  86.     120: 107,
  87.     121: 108,
  88.     122: 109 })
  89. encoding_map = codecs.make_encoding_map(decoding_map)
  90.  
  91. def rot13(infile, outfile):
  92.     outfile.write(infile.read().encode('rot-13'))
  93.  
  94. if __name__ == '__main__':
  95.     import sys
  96.     rot13(sys.stdin, sys.stdout)
  97.  
  98.